home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995…tember: Reference Library / Dev.CD Sep 95 RL / Dev.CD Sep 95 RL.toast / mac / Technical Documentation / develop / develop Issue 8 code / AUX Hybrid Apps / AUX System Calls / src / sigstack.a < prev    next >
Encoding:
Text File  |  1991-10-09  |  374 b   |  21 lines  |  [TEXT/tefi]

  1. ;    @(;)Copyright Apple Computer 1987    Version 1.2 of sigstack.s on 89/08/10 12:25:02 (Apple)
  2.     ;    "sigstack.s"
  3.  
  4. ;    error = sigstack(newsigstack, oldsigstack);
  5.  
  6.         
  7.     export    auxsigstack
  8.     import    cerror
  9.  
  10. auxsigstack     proc
  11.     move.l    4(sp),a0        ; fetch argument
  12.     move.l    8(sp),d1        ; fetch argument
  13.     move.l    #133,d0        ; setup syscall type
  14.     trap    #15
  15.     bcs.s    LS2
  16.     rts    
  17. LS2
  18.     jmp    cerror
  19.     endp
  20.     end
  21.